home *** CD-ROM | disk | FTP | other *** search
/ PC User 2002 April / Disc 2 / PCUSER0402D2.iso / software / utils / files / wincron.exe / data1.cab / Sample_Scripts / murder_test.tg < prev    next >
Encoding:
Text File  |  2001-10-20  |  450 b   |  23 lines

  1. ## murder_test.tg
  2. # Part of the standard regression tests, this script tests the code that keeps jobs
  3. #    in the call chain from getting deleted.
  4. # Expected results: 
  5. #    a friendly message that the job is active and cannot be deleted.
  6. # See Also: suicide_test.tg
  7.  
  8. # parent job
  9. {
  10.     -start 
  11.     -name LOADER!
  12.     -action -call KILLER!
  13. }
  14.  
  15. # test killing the parent
  16. {
  17.     -name KILLER!
  18.     -action -print Killing LOADER!
  19.     -action -kill LOADER!
  20. }
  21.  
  22.  
  23.